home *** CD-ROM | disk | FTP | other *** search
- ; *******************************************************
- ; Example 1 - Check the current status of _IEErrorNotif, turn it off if on, on if off
- ; *******************************************************
- ;
- #include <IE.au3>
- If _IEErrorNotify () Then
- MsgBox(0, "_IEErrorNotify Status", "Notification is ON, turning it OFF")
- _IEErrorNotify (1)
- Else
- MsgBox(0, "_IEErrorNotify Status", "Notification is OFF, turning it ON")
- _IEErrorNotify (0)
- EndIf